net/http.http2clientStream.bytesRemain (field)

8 uses

	net/http (current package)
		h2_bundle.go#L7559: 	bytesRemain int64        // -1 means unknown; owned by transportResponseBody.Read
		h2_bundle.go#L9725: 	cs.bytesRemain = res.ContentLength
		h2_bundle.go#L9780: 	if cs.bytesRemain != -1 {
		h2_bundle.go#L9781: 		if int64(n) > cs.bytesRemain {
		h2_bundle.go#L9782: 			n = int(cs.bytesRemain)
		h2_bundle.go#L9788: 			return int(cs.bytesRemain), err
		h2_bundle.go#L9790: 		cs.bytesRemain -= int64(n)
		h2_bundle.go#L9791: 		if err == io.EOF && cs.bytesRemain > 0 {